@charset "UTF-8";
.mask_display {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.text_ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 对话框样式 开始 */
.ndialog_wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 800px;
    max-height: 600px;
    min-width: 300px;
    min-height: 160px;
    border: 1px solid #ddd;
    background-color: #FDFDFD;
    box-sizing: border-box;
    font-family: '宋体', serif;
    box-shadow: 0 0 1px 1px #ddd;
    z-index: 1001;
}

.ndialog_wrap .ndialog_header {
    padding: 9px 10px;
    width: 100%;
    color: #fff;
    background-color: #00BE9B;
    box-sizing: border-box;
}

.ndialog_wrap .ndialog_header .ndialog_title {
    display: inline-block;
    max-width: 750px;
}

.ndialog_wrap .ndialog_header .ndialog_close {
    margin-left: 10px;
    float: right;
    font-size: 16px;
    cursor: pointer;
}

.ndialog_wrap .ndialog_body {
    padding: 10px;
    margin-bottom: 39px;
    width: 100%;
    height: auto;
    max-height: 526px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.ndialog_wrap .ndialog_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ccc;
}

.ndialog_wrap .ndialog_footer button {
    padding: 5px 15px;
    background-color: #fff;
    outline: none;
    border: 1px solid #fff;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.ndialog_wrap .ndialog_footer .ndialog_enter_btn {
    color: #fff;
    background-color: #00BE9B;
}

.ndialog_wrap .ndialog_footer .ndialog_enter_btn:hover {
    opacity: 0.7;
}

.ndialog_wrap .ndialog_footer .ndialog_cancel_btn {
    margin-left: 10px;
}

.ndialog_wrap .ndialog_footer .ndialog_cancel_btn:hover {
    background-color: #E6E6E6;
}

/* 对话框样式 结束 */